home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-22 | 626 b | 33 lines | [TEXT/KAHL] |
- ///--------------------------------------------------------------------------------------
- // Tiling Demo.h
- //
- // By: Vern Jensen
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void main( void );
- void CreateSpriteWorld( void );
- void SetUpTiling( void );
- void CreateSprites( void );
-
- void SetUpAnimation( void );
- void RunAnimation( void );
- void ShutDown( void );
-
- void MouseSpriteMoveProc(SpritePtr srcSpriteP);
- void DiamondSpriteMoveProc(SpritePtr ballSpriteP);
-
- #ifdef __cplusplus
- }
- #endif
-